
body {
    background: #0d0d0d;
    color: #dfffe1;
    font-family: 'EB Garamond', serif;
    margin: 0;
    padding: 20px;
    position: relative;
}

/* Granulação */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    background: url("https://grainy-gradient.vercel.app/noise.svg");
    opacity: 0.06;
    pointer-events: none;
    z-index: -1;
}

/* Título flutuante */
h1 {
    font-size: 2.8rem;
    text-align: center;
    letter-spacing: 2px;
    color: #e2e7ff;
    text-shadow: 0 0 10px #e2e7ff55;
    animation: tremorSuave 6s ease-in-out infinite;
}

h2 {
    font-size: 1.6rem;
    text-align: center;
    letter-spacing: 2px;
    color: #e2e7ff;
}

/* Parágrafos */
p {
    font-size: 1.2rem;
    line-height: 1.7;
    opacity: 0.9;
    text-align: justify;
    margin: 5px 0;
}

/* Caixas no centro */
.container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 10px;
}

/* Animação */
@keyframes tremorSuave {
    0% { transform: translateY(0); }
    50% { transform: translateY(-2px); }
    100% { transform: translateY(0); }
}

